home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / medit.zip / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1994-06-23  |  379b  |  23 lines

  1. class CMainFrame : public CMDIFrameWnd
  2. {
  3.     DECLARE_DYNCREATE(CMainFrame)
  4.  
  5.     CStatusBar  m_StatusBar;
  6.     CToolBar    m_ToolBar;
  7.  
  8. public:
  9.     CStatusBar &GetStatusBar()
  10.     {
  11.         return m_StatusBar;
  12.     };
  13.  
  14. // Generated message map functions
  15. protected:
  16.     //{{AFX_MSG(CMainFrame)
  17.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  18.     //}}AFX_MSG
  19.     DECLARE_MESSAGE_MAP()
  20. };
  21.  
  22.  
  23.